Python imports


In [1]:
import uuid
import time as pytime
import operator


from django.utils.html import urlize
from constance import config
from IPython.display import display_pretty, display_html, display_jpeg, display_png, display_json, display_latex, display_svg
from mongoengine.queryset import Q

from oneflow.core.models import *
from oneflow.base.utils.dateutils import *

def html(thing):
    display_html(thing, raw=True)

def urlblank(text):
    return urlize(text).replace('<a ', '<a target="_blank" ')

Analysis


In [2]:
open_feeds = Feed.objects(Q(closed=False) | Q(closed__exists=False))
open_feeds_count = open_feeds.count()
open_feeds_count


Out[2]:
4076

In [3]:
lower_value = None
loop_count = 0 
fetched_feeds = 0
periods_feeds = []
delta_lengths = (
    timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL),
    timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 2),    
    timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 6),    
    timedelta(seconds=config.FEED_FETCH_DEFAULT_INTERVAL * 12),    
    timedelta(days=1),
    timedelta(days=2),
    timedelta(days=3),
    timedelta(days=4),
    timedelta(days=5),
    timedelta(days=6),
    timedelta(days=7),
    timedelta(days=10),
    None
)

for delta in delta_lengths:
    
    upper_value = (now() - delta) if delta else None
    
    if lower_value is None:
        kwargs = {'last_fetch__gt': upper_value}
        
    elif upper_value is None:
        kwargs = {'last_fetch__lte': lower_value}
        
    else:
        kwargs = {'last_fetch__lte': lower_value, 'last_fetch__gt': upper_value}

    feeds = Feed.objects(**kwargs)
    count = feeds.count()
    percent = count * 100.0 / open_feeds_count
    avg_interval = sum(f.fetch_interval for f in feeds) * 1.0 / (count or 1.0)

    print '%s feeds (%.1f%%) fetched' % (count, percent),
    
    if lower_value is None:
         print 'less than %s ago' % naturaldelta(upper_value),
    
    elif upper_value is None:
        print 'more than %s ago' % naturaldelta(lower_value),
    
    else:
        print 'between %s and %s ago' % (naturaldelta(lower_value), naturaldelta(upper_value)),
    
    print ", avg fetch interval: %s             — in periods_feeds[%s]" % (naturaldelta(avg_interval), loop_count)
    
    periods_feeds.append(feeds)
    fetched_feeds += count
    lower_value = upper_value
    loop_count += 1

if fetched_feeds == open_feeds_count:
    print '\n>>> All open feeds are beiing fetched.'
else:
    print '%s total feeds fetched, out of %s open feeds.' % (fetched_feeds, open_feeds_count)


2833 feeds (69.5%) fetched less than an hour ago , avg fetch interval: an hour             — in periods_feeds[0]
73 feeds (1.8%) fetched between an hour and 2 hours ago , avg fetch interval: 3 hours             — in periods_feeds[1]
747 feeds (18.3%) fetched between 2 hours and 6 hours ago , avg fetch interval: 6 hours             — in periods_feeds[2]
381 feeds (9.3%) fetched between 6 hours and 12 hours ago , avg fetch interval: 8 hours             — in periods_feeds[3]
39 feeds (1.0%) fetched between 12 hours and a day ago , avg fetch interval: 8 hours             — in periods_feeds[4]
2 feeds (0.0%) fetched between a day and 2 days ago , avg fetch interval: 3 hours             — in periods_feeds[5]
0 feeds (0.0%) fetched between 2 days and 3 days ago , avg fetch interval: a moment             — in periods_feeds[6]
0 feeds (0.0%) fetched between 3 days and 4 days ago , avg fetch interval: a moment             — in periods_feeds[7]
0 feeds (0.0%) fetched between 4 days and 5 days ago , avg fetch interval: a moment             — in periods_feeds[8]
4 feeds (0.1%) fetched between 5 days and 6 days ago , avg fetch interval: an hour             — in periods_feeds[9]
0 feeds (0.0%) fetched between 6 days and 7 days ago , avg fetch interval: a moment             — in periods_feeds[10]
0 feeds (0.0%) fetched between 7 days and 10 days ago , avg fetch interval: a moment             — in periods_feeds[11]
1 feeds (0.0%) fetched more than 10 days ago , avg fetch interval: an hour             — in periods_feeds[12]
4080 total feeds fetched, out of 4076 open feeds.

Display bad feeds


In [8]:
html('<ul>')
for feed in periods_feeds[8]:
    html(u'<li><a href="http://1flow.io/admin/models/feed/{feed.id}/" target="_blank">{feed.name}</a>'
         u'— {url}<ul><li>interval: {feed.fetch_interval}, fetched {last}, '
         u'{feed.recent_articles_count}/{feed.all_articles_count} articles</li>'
         u'<li>{feed.errors}<li></ul></li>'.format(
            feed=feed, url=urlblank(feed.url), last=naturaltime(feed.last_fetch)))
html('</ul>')


  • Digital Edge Bloghttp://www.naa.org/blog/digitaledge/rss.cfm
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Surfrider Foundationhttp://www.surfrider.eu/en/accueil/rss.xml
    • interval: 3600, fetched 4 days ago, 37/311 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:53.365335+00:00']
  • BEZDNA.SUhttp://bezdna.su/rss.php
    • interval: 3600, fetched 4 days ago, 400/1127 articles
    • [u'document declared as us-ascii, but parsed as windows-1251 @@2013-07-16T23:29:54.165297+00:00']
  • ZDNethttp://www.zdnet.fr/feeds/rss/actualites/
    • interval: 3600, fetched 4 days ago, 118/146 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:29:53.522603+00:00']
  • Le flux RSS DTChttp://danstonchat.com/rss.xml
    • interval: 3600, fetched 4 days ago, 509/7862 articles
    • []
  • FredCavazza.nethttp://www.fredcavazza.net/feed/
    • interval: 3600, fetched 4 days ago, 2/59 articles
    • []
  • Freenewshttp://www.freenews.fr/feeds/rss.php
    • interval: 3600, fetched 4 days ago, 42/46 articles
    • []
  • ploum.net | ploum.nethttp://ploum.net/feed
    • interval: 3600, fetched 4 days ago, 4/66 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:01.387606+00:00']
  • eMarketer Articleshttp://feeds.emarketer.com/Articles.xml?src=rss_top_right_newsltr
    • interval: 3600, fetched 4 days ago, 27/27 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:00.117741+00:00']
  • Actualité Tom's Hardware FRhttp://www.presence-pc.com/rss.xml
    • interval: 3600, fetched 4 days ago, 436/851 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:01.093741+00:00']
  • I, Cringely @ PBS.orghttp://www.pbs.org/cringely/pulpit/rss2.xml
    • interval: 3600, fetched 4 days ago, 0/15 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:04.309234+00:00']
  • Magazine Publishers of America: Latest Newshttp://www.magazine.org/rssHome.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:05.272752+00:00']
  • The Kelsey Group Bloghttp://206.106.174.250/blog/RSS2.asp?action=category&ci=1
    • interval: 3600, fetched 4 days ago, 10/10 articles
    • [u'document declared as US-ASCII, but parsed as ISO-8859-2 @@2013-07-16T23:30:07.797298+00:00']
  • What's New from the Newspaper Association of Americahttp://www.naa.org/naa.rss.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:05.501714+00:00']
  • Wired News: Technologyhttp://www.wired.com/rss/technology.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html;charset=UTF-8 is not an XML media type @@2013-07-16T23:30:05.773227+00:00']
  • Univers Freeboxhttp://www.universfreebox.com/backend.php?id_rubrique=6
    • interval: 3600, fetched 4 days ago, 23/23 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:06.673255+00:00']
  • Univers Freeboxhttp://www.universfreebox.com/backend.php?id_rubrique=29
    • interval: 3600, fetched 4 days ago, 49/49 articles
    • []
  • Univers Freeboxhttp://www.universfreebox.com/backend.php?id_rubrique=1
    • interval: 3600, fetched 4 days ago, 23/23 articles
    • []
  • Unshelvedhttp://www.unshelved.com/rss.aspx
    • interval: 3600, fetched 4 days ago, 25/25 articles
    • []
  • ZDNet Newshttp://www.zdnet.fr/feeds/rss/actualites/?l=20
    • interval: 3600, fetched 4 days ago, 39/39 articles
    • []
  • Toutelatele.comhttp://www.toutelatele.com/backend.php3
    • interval: 3600, fetched 4 days ago, 0/272 articles
    • []
  • Vigicrues : Rhin GCAhttp://www.vigicrues.gouv.fr/rss/?codeTron=SA13
    • interval: 3600, fetched 4 days ago, 1/2 articles
    • []
  • Les nuits de Lavigehttp://radiofrance-podcast.net/podcast09/rss_11528.xml
    • interval: 3600, fetched 4 days ago, 0/59 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:08.657621+00:00']
  • ESC Gaming Tournamenthttp://www.esc-gaming-tournament.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • []
  • Sustainabloghttp://sustainablog.org/feed/
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:10.501640+00:00']
  • Librairie du commerce international - UBIFRANCEhttp://www.ubifrance.fr/rss/librairie.aspx
    • interval: 3600, fetched 4 days ago, 833/2609 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:11.129239+00:00']
  • Shacknewshttp://www.shacknews.com/rss?recent_articles=1
    • interval: 3600, fetched 4 days ago, 2699/12065 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:11.256787+00:00']
  • A List Apart: The Full Feedhttp://www.alistapart.com/rss.xml
    • interval: 3600, fetched 4 days ago, 0/185 articles
    • []
  • Node.js Bloghttp://blog.nodejs.org/feed/
    • interval: 3600, fetched 4 days ago, 4/4 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:13.556865+00:00']
  • HTML5Rocks - Posts & Tutorialshttp://www.html5rocks.com/tutorials/index.xml
    • interval: 3600, fetched 4 days ago, 0/20 articles
    • [u'document declared as utf-8, application/atom+xml, but parsed as utf-8 @@2013-07-16T23:30:11.849220+00:00']
  • [>WiziShop] Conseils et e-commercehttp://rssblog.wizishop.com/Wizishop
    • interval: 3600, fetched 4 days ago, 48/195 articles
    • []
  • Blagues de Geek - le RSS !http://www.blaguesdegeek.com/rss2.php
    • interval: 3600, fetched 4 days ago, 0/5 articles
    • []
  • blog.nodejitsu.comhttp://blog.nodejitsu.com/feed.xml
    • interval: 3600, fetched 4 days ago, 18/106 articles
    • []
  • Dialed In (MP3)http://dialedinpodcast.cnet.com/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:15.157637+00:00']
  • HBH News Feedhttp://www.hellboundhackers.org/news/rss.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:15.313332+00:00']
  • Instapaper: HTML5 & CSS3http://www.instapaper.com/folder/378166/rss/719604/h9IRhs3lOu9U3VUKDTV9nYtqUE
    • interval: 3600, fetched 4 days ago, 0/10 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:16.197968+00:00']
  • Instapaper: JavaScripthttp://www.instapaper.com/folder/378167/rss/719604/h9IRhs3lOu9U3VUKDTV9nYtqUE
    • interval: 3600, fetched 4 days ago, 0/10 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:16.721195+00:00']
  • Logiciel (Mac)http://madfilm2.com/v2/index.php/logiciel-mac?format=feed&type=rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:18.313771+00:00']
  • News et articles clubichttp://www.clubic.com/articles.rss?delete=1
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:19.264730+00:00']
  • RSDhttp://www.blogger.com/rsd.g?blogID=5257504379924813482
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:19.733773+00:00']
  • Sous-titres Jouteyahttp://www.jouteya.net/Michael-Jackson/subs_rss.php
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:20.817206+00:00']
  • Stanimir Stoyanov\'s Bloghttp://winjade.net/blogs/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:21.643392+00:00']
  • Terra Pixelahttp://www.terrapixela.com/feed
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:21.933233+00:00']
  • Ziki - Vos notificationshttp://www.ziki.com/fr/account/notifications?aid=22254&zkey=ab76eef5c9a1e63978068b7ee289d108
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'document declared as us-ascii, but parsed as ISO-8859-2 @@2013-07-16T23:30:24.115461+00:00']
  • BizCityhttp://www.bizcity.ro/syndication/rss.php
    • interval: 3600, fetched 4 days ago, 223/10332 articles
    • []
  • Coding Horrorhttp://www.codinghorror.com/blog/index.xml
    • interval: 3600, fetched 4 days ago, 0/380 articles
    • []
  • Dilbert Daily Striphttp://feed.dilbert.com/dilbert/daily_strip
    • interval: 3600, fetched 4 days ago, 166/919 articles
    • []
  • Mute magazine - Culture and politics after the nethttp://www.metamute.org/en/node/feed
    • interval: 3600, fetched 4 days ago, 0/132 articles
    • [u':103:915: not well-formed (invalid token) @@2013-07-16T23:30:28.725252+00:00']
  • The Venus Project Bloghttp://thevenusproject.com/blog/feed/
    • interval: 3600, fetched 4 days ago, 0/44 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:27.213382+00:00']
  • INCIDENTAL COMICShttp://thoughtballoonhelium.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • []
  • Inima Bacăuluihttp://www.inimabacaului.ro/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/6 articles
    • []
  • Saturday Morning Breakfast Cerealhttp://www.smbc-comics.com/rss.php
    • interval: 3600, fetched 4 days ago, 167/1332 articles
    • []
  • Web Upd8 - Ubuntu / Linux bloghttp://webupd8.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:33.158970+00:00']
  • Random Etc.http://www.processingblogs.org/feed/
    • interval: 3600, fetched 4 days ago, 0/15 articles
    • []
  • linux360 Feed Aggregatorhttp://planet.linux360.ro/rss20.xml
    • interval: 3600, fetched 4 days ago, 23/87 articles
    • []
  • 1UP RSS feedhttp://rss.1up.com/rss?x=1
    • interval: 3600, fetched 4 days ago, 116/373 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:30:32.580727+00:00']
  • A Daily Dose of Architecturehttp://archidose.blogspot.com/atom.xml
    • interval: 3600, fetched 4 days ago, 177/200 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:33.577241+00:00']
  • A List Aparthttp://www.alistapart.com/site/rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Accessibility in the Newshttp://ncdae.org/rss/ncdaenews.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:32.169239+00:00']
  • Afraid to Trade.com Bloghttp://blog.afraidtotrade.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Al-Ahram Weekly Onlinehttp://weekly.ahram.org.eg/front.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:33.888206+00:00']
  • All Categories - Browse - gigapedia.orghttp://gigapedia.org/feeds.rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:30:34.225321+00:00']
  • Anthropology of Soundhttp://www.soundstudies.info/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u' @@2013-07-16T23:30:34.483794+00:00']
  • ASIFA-Hollywood Animation Archivehttp://www.animationarchive.org/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:37.297376+00:00']
  • AsiaMedia Southeast Asia Newshttp://www.asiamedia.ucla.edu/rss/rss-southeastasia.asp
    • interval: 3600, fetched 4 days ago, 0/15 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:39.689578+00:00']
  • Archinect.com Feedhttp://archinect.com/news.xml
    • interval: 3600, fetched 4 days ago, 65/65 articles
    • []
  • BerryReviewhttp://rss.berryreview.com/Berryreview
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:41.962893+00:00']
  • Bike Snob NYChttp://bikesnobnyc.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:41.509236+00:00']
  • Bill Carahttp://www.billcara.com/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:39.971125+00:00']
  • bit-tech.net News Feedhttp://www.bit-tech.net/xml/news.rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • BlackBerry Coolhttp://www.blackberrycool.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • BLACKFIVEhttp://www.blackfive.net/main/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:41.725242+00:00']
  • Blog of Soh Tanakahttp://www.sohtanaka.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:41.209230+00:00']
  • BLOG.FASHIONBUSINESSREPORT.COMhttp://blog.fashionbusinessreport.com/rss2.aspx
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':21:64: not well-formed (invalid token) @@2013-07-16T23:30:41.988113+00:00']
  • Benno's Bloghttp://benno.id.au/blog/feed/
    • interval: 3600, fetched 4 days ago, 6/10 articles
    • []
  • brand-mhttp://www.brand-m.biz/feed
    • interval: 3600, fetched 4 days ago, 37/37 articles
    • []
  • Centauri Dreamshttp://www.centauri-dreams.org/?feed=rss2
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:47.393001+00:00']
  • BizTalk Server Team Bloghttp://blogs.msdn.com/biztalk_server_team_blog/rss.xml
    • interval: 3600, fetched 4 days ago, 12/26 articles
    • []
  • Comic RSS Feedhttp://www.themysticalforestzone.com/insonicnia/inc/feed.php
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:48.116986+00:00']
  • brooklynveganhttp://www.brooklynvegan.com/atom.xml
    • interval: 3600, fetched 4 days ago, 114/114 articles
    • []
  • Corporate Identity Portal Nachrichtenhttp://www.ci-portal.de/index.php?id=185&type=100
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u"HTTP Error 301: Moved Permanently - Redirection to url 'feed://www.ci-portal.de/feed/' is not allowed @@2013-07-16T23:30:48.938382+00:00"]
  • DailySnap.comhttp://www.dailysnap.com/rss.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Daily MTGhttp://www.wizards.com/rss.asp?x=magic
    • interval: 3600, fetched 4 days ago, 28/28 articles
    • []
  • Dienekes’ Anthropology Bloghttp://dienekes.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Dilberthttp://www.caesar.nl/CaesarRSS/DilbertRSS.aspx
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:53.233259+00:00']
  • DIYPhotography.net -DIY Photography and Studio Lightinghttp://www.diyphotography.net/node/feed
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:30:56.131846+00:00']
  • DomainNews - Domain Name News, The Domain Industry News, ICANN News, Registry News, Domainer News, Domainhttp://www.domainnews.com/feed/rss/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:54.613231+00:00']
  • EnviroLink News Servicehttp://www.envirolink.org/environews.rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:30:56.769320+00:00']
  • eMarketer Articles and Newsroom Postshttp://feeds.emarketer.com/Articles.xml
    • interval: 3600, fetched 4 days ago, 12/12 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:57.009364+00:00']
  • EUobserver.com - Headline Newshttp://euobserver.com/9/?rss=1
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:30:57.685991+00:00']
  • Everbluehttp://everblue-comic.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:30:57.441232+00:00']
  • Feministehttp://www.feministe.us/blog/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Fat Cyclisthttp://www.fatcyclist.com/feed/
    • interval: 3600, fetched 4 days ago, 14/14 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:01.120462+00:00']
  • FOREX.com's Weekly Strategyhttp://www.forex.com/weekly.xml
    • interval: 3600, fetched 4 days ago, 1/1 articles
    • []
  • FOXSports.com News for NFLhttp://msn.foxsports.com/feedout/syndicatedContent?categoryId=5
    • interval: 3600, fetched 4 days ago, 18/18 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:31:01.401379+00:00']
  • Free exchangehttp://www.economist.com/blogs/freeexchange/atom.xml
    • interval: 3600, fetched 4 days ago, 28/28 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:03.453399+00:00']
  • Gambithttp://gambit.blogs.nytimes.com/rss2.xml
    • interval: 3600, fetched 4 days ago, 0/15 articles
    • []
  • Education Week American Education News Site of Recordhttp://www.edweek.org/ew/rss1.xml
    • interval: 3600, fetched 4 days ago, 0/146 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:04.813040+00:00']
  • futuregirl craft bloghttp://www.futuregirl.com/craft_blog/atom.xml
    • interval: 3600, fetched 4 days ago, 28/28 articles
    • []
  • GEO.dehttp://img.geo.de/rss/GEO/index.xml
    • interval: 3600, fetched 4 days ago, 21/21 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:05.612776+00:00']
  • GEO.dehttp://www.geo.de/rss/GEO/index.xml
    • interval: 3600, fetched 4 days ago, 16/16 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:06.033233+00:00']
  • Google Code Bloghttp://googlecode.blogspot.com/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Google Developers Bloghttp://code.google.com/feeds/updates.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:08.707471+00:00']
  • Google Webmaster Central Bloghttp://googlewebmastercentral.blogspot.com/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:08.553243+00:00']
  • GameKnot online chess newshttp://gameknot.com/rss_news.pl
    • interval: 3600, fetched 4 days ago, 34/34 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:08.405230+00:00']
  • How to Avoid the Bummer Lifehttp://www.howtoavoidthebummerlife.com/weblog/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:09.717317+00:00']
  • IEBloghttp://blogs.msdn.com/ie/rss.xml
    • interval: 3600, fetched 4 days ago, 24/24 articles
    • []
  • JREF Newshttp://www.randi.org/joom/index2.php?option=com_rss&feed=RSS2.0&no_html=1
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Lalai LOADEDhttp://lalai.net/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:12.170897+00:00']
  • Klona : ShiftyLook.comhttp://www.shiftylook.com/comics/rss/klonoa
    • interval: 3600, fetched 4 days ago, 0/10 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:12.897076+00:00']
  • Little Hokum Raghttp://amycrehore.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:14.164763+00:00']
  • jQuery Forumhttp://forum.jquery.com/feed
    • interval: 3600, fetched 4 days ago, 347/347 articles
    • []
  • MacOSXHints.comhttp://www.macosxhints.com/backend/geeklog.rdf
    • interval: 3600, fetched 4 days ago, 24/24 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:17.931534+00:00']
  • KurzweilAI » Bloghttp://www.kurzweilai.net/blog/feed/atom
    • interval: 3600, fetched 4 days ago, 37/50 articles
    • [u':1907:481: not well-formed (invalid token) @@2013-07-16T23:31:23.976097+00:00']
  • The Wotchhttp://www.thewotch.com/feed.php
    • interval: 3600, fetched 4 days ago, 10/10 articles
    • []
  • Timbuktu Chronicleshttp://timbuktuchronicles.blogspot.com/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Understanding Google Places & Local Searchhttp://blumenthals.com/blog/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Top Questions - Social Sound Designhttp://socialsounddesign.com/feeds
    • interval: 3600, fetched 4 days ago, 61/87 articles
    • []
  • VIBEcomic RSShttp://www.vibecomic.com/rss.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:22.878214+00:00']
  • TheaterMania.comhttp://www.theatermania.com/rss.xml
    • interval: 3600, fetched 4 days ago, 75/75 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:24.345270+00:00']
  • Waveformlesshttp://waveformless.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:26.061231+00:00']
  • Wellhttp://well.blogs.nytimes.com/feed/
    • interval: 3600, fetched 4 days ago, 33/33 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:31:28.149250+00:00']
  • www.wwf.de: Aktuelle Nachrichtenhttp://www.wwf.de/presse/rss.xml
    • interval: 3600, fetched 4 days ago, 11/11 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:29.287482+00:00']
  • Seth's Bloghttp://sethgodin.typepad.com/seths_blog/atom.xml
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u':16:67: mismatched tag @@2013-07-16T23:31:30.553456+00:00']
  • Windows Server Bloghttp://blogs.technet.com/windowsserver/rss.xml
    • interval: 3600, fetched 4 days ago, 26/26 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.013224+00:00']
  • DRIVE.RUhttp://www.drive.ru/export/rss.xml
    • interval: 3600, fetched 4 days ago, 799/799 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:30.437660+00:00']
  • ZDNet | The Ed Bott Report Blog RSShttp://blogs.zdnet.com/Bott/wp-rss2.php
    • interval: 3600, fetched 4 days ago, 21/21 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.683866+00:00']
  • WordPress Planethttp://planet.wordpress.org/feed/
    • interval: 3600, fetched 4 days ago, 77/77 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:33.672189+00:00']
  • Публикации / Hi-Tech@Mail.ruhttp://hi-tech.mail.ru/rss/all/
    • interval: 3600, fetched 4 days ago, 1469/2258 articles
    • []
  • Топ-30 постовhttp://top.artlebedev.ru/rss/
    • interval: 3600, fetched 4 days ago, 2190/2260 articles
    • []
  • LAUGHSPINhttp://www.laughspin.com/feed/
    • interval: 3600, fetched 4 days ago, 572/2737 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:35.421300+00:00']
  • NY Voice: Sound of the Cityhttp://blogs.villagevoice.com/music/rss.xml
    • interval: 3600, fetched 4 days ago, 678/7956 articles
    • []
  • The Classical: Articleshttp://theclassical.org/rss/articles/all
    • interval: 3600, fetched 4 days ago, 195/752 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:35.785239+00:00']
  • Mirth Magazinehttp://mirthmag.com/feed/
    • interval: 3600, fetched 4 days ago, 0/5 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:36.129027+00:00']
  • Goldstar New Yorkhttp://feeds.goldstar.com/goldstar-new-york
    • interval: 3600, fetched 4 days ago, 0/2 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:37.877297+00:00']
  • iTnewshttp://www.itnews.com.au/Rss/Rss.aspx
    • interval: 3600, fetched 4 days ago, 0/3 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:31:38.501113+00:00']
  • All Shook Downhttp://blogs.sfweekly.com/shookdown/rss.xml
    • interval: 3600, fetched 4 days ago, 33/45 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:39.153025+00:00']
  • SFoodiehttp://blogs.sfweekly.com/foodie/rss.xml
    • interval: 3600, fetched 4 days ago, 35/53 articles
    • []
  • Latest Newshttp://www.itwire.com/index2.php?option=com_rss&feed=RSS2.0&no_html=1
    • interval: 3600, fetched 4 days ago, 0/2 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:42.480489+00:00']
  • Drowned In Sound // Feedhttp://drownedinsound.com/feeds/all/feed.xml
    • interval: 3600, fetched 4 days ago, 35/71 articles
    • []
  • Sixshot.com Urbanhttp://www.sixshot.com/newsfeed/rssnews.asp
    • interval: 3600, fetched 4 days ago, 0/3 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:41.745909+00:00']
  • Burntpianohttp://burntpiano.com/feed/
    • interval: 3600, fetched 4 days ago, 0/3 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:42.262891+00:00']
  • Network2 Bloghttp://blog.network2.tv/feed/
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:31:43.237222+00:00']
  • Businesshackers - only leading startupshttp://www.businesshackers.com/feed/atom/
    • interval: 3600, fetched 4 days ago, 0/2 articles
    • []
  • Bitsplitting.orghttp://bitsplitting.org/feed/
    • interval: 3600, fetched 4 days ago, 24/35 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:43.902064+00:00']
  • Daniel Jalkuthttp://www.red-sweater.com/blog/feed
    • interval: 3600, fetched 4 days ago, 6/176 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:44.253242+00:00']
  • iPhone.AppStormhttp://iphone.appstorm.net/feed/
    • interval: 3600, fetched 4 days ago, 262/1979 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:51.270959+00:00']
  • PhoneArenahttp://www.phonearena.com/feed
    • interval: 3600, fetched 4 days ago, 440/441 articles
    • []
  • Ihnatko@Timeshttp://www.suntimes.com/rss/?path=/suntimes/technology/ihnatko
    • interval: 3600, fetched 4 days ago, 21/274 articles
    • []
  • BBC Sport - Footballhttp://feeds.bbci.co.uk/sport/0/football/rss.xml
    • interval: 3600, fetched 4 days ago, 5788/17699 articles
    • []
  • MacLife Reviewshttp://www.maclife.com/articles/22/feed
    • interval: 3600, fetched 4 days ago, 455/2590 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:31:47.221246+00:00']
  • RAPPAMELOhttp://rappamelo.com/feed/
    • interval: 3600, fetched 4 days ago, 306/2630 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:47.101222+00:00']
  • OS X Dailyhttp://osxdaily.com/feed/
    • interval: 3600, fetched 4 days ago, 320/4068 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:49.260813+00:00']
  • MacUpdatehttps://www.macupdate.com/members/wartchlist_rss/251021:6dbaf3d36743d7be235c5a0235037182
    • interval: 3600, fetched 4 days ago, 78/78 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:31:50.060889+00:00']
  • Webin Bloghttp://webinhq.com/blog/rss
    • interval: 3600, fetched 4 days ago, 3/3 articles
    • []
  • Apprendre la photohttp://apprendre-la-photo.fr/feed/
    • interval: 3600, fetched 4 days ago, 18/181 articles
    • []
  • Juste Sublimehttp://www.justesublime.fr/feed/
    • interval: 3600, fetched 4 days ago, 112/606 articles
    • []
  • Le Blog de Madame Chttp://leblogdemadamec.fr/accueil/feed/
    • interval: 3600, fetched 4 days ago, 0/200 articles
    • [u':34:138: not well-formed (invalid token) @@2013-07-16T23:31:53.428791+00:00']
  • Presse-Citronhttp://www.presse-citron.net/feed
    • interval: 3600, fetched 4 days ago, 589/591 articles
    • []
  • Trendy Weddinghttp://www.trendyweddingleblog.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 59/576 articles
    • []
  • Flysurf.com news channelhttp://www.flysurf.com/kitenews.rss
    • interval: 3600, fetched 4 days ago, 317/1750 articles
    • []
  • Minimalissimohttp://minimalissimo.com/feed/
    • interval: 3600, fetched 4 days ago, 163/984 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:55.009235+00:00']
  • Marco.orghttp://www.marco.org/rss
    • interval: 3600, fetched 4 days ago, 162/1894 articles
    • []
  • WBD — WEBDRAMA.ORGhttp://webdrama.org/archiv/?feed=rss2
    • interval: 3600, fetched 4 days ago, 0/5 articles
    • []
  • REYNALD DROUHIN | Recherches | Esquisses | Documentshttp://reynald.incident.net/feed/
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:54.365236+00:00']
  • Les news aeiou de fluctuat.nethttp://www.fluctuat.net/blog/aeiou.xml
    • interval: 3600, fetched 4 days ago, 0/2 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:31:54.555230+00:00']
  • ADEME - Toute l'actualitéhttp://www2.ademe.fr/rss/RSS_ADEME_16262.xml
    • interval: 3600, fetched 4 days ago, 0/20 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:31:56.281343+00:00']
  • Le Criiremhttp://www.criirem.ouvaton.org/spip.php?page=backend
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • []
  • The Greatest beginninghttp://tony2tones.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 10/70 articles
    • []
  • News de Manga Sanctuaryhttp://www.manga-sanctuary.com/RSS/news.xml
    • interval: 3600, fetched 4 days ago, 891/1463 articles
    • []
  • Tnoozhttp://feeds.tnooz.com/tnooz
    • interval: 3600, fetched 4 days ago, 858/3515 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:31:59.713232+00:00']
  • A List Aparthttp://www.alistapart.com/feed/rss.xml
    • interval: 3600, fetched 4 days ago, 191/323 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:01.349929+00:00']
  • BBC Formula 1http://newsrss.bbc.co.uk/rss/sportonline_world_edition/motorsport/formula_one/rss.xml
    • interval: 3600, fetched 4 days ago, 487/3295 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:01.333252+00:00']
  • Chemistry World RSShttp://www.rsc.org/chemistryworld/cwlatestnews.xml
    • interval: 3600, fetched 4 days ago, 65/66 articles
    • []
  • Google Code Bloghttp://googlecode.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 73/692 articles
    • []
  • ShiftyLook Comicshttp://www.shiftylook.com/comics/rss
    • interval: 3600, fetched 4 days ago, 387/849 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:00.484885+00:00']
  • DOGHOUSEhttp://thedoghousediaries.com/feed
    • interval: 3600, fetched 4 days ago, 11/12 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:02.427597+00:00']
  • Dot Earthhttp://dotearth.blogs.nytimes.com/rss2.xml
    • interval: 3600, fetched 4 days ago, 16/17 articles
    • []
  • Dot Earthhttp://dotearth.blogs.nytimes.com/feed/
    • interval: 3600, fetched 4 days ago, 2/2 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:01.005232+00:00']
  • Instructables: exploringhttp://www.instructables.com/tag/type:instructable/rss.xml
    • interval: 3600, fetched 4 days ago, 554/555 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:01.457400+00:00']
  • IT infrastructure newshttp://rss.techtarget.com/185.xml
    • interval: 3600, fetched 4 days ago, 20/20 articles
    • []
  • Mark's Bloghttp://blogs.technet.com/markrussinovich/rss.xml
    • interval: 3600, fetched 4 days ago, 0/25 articles
    • []
  • MarketingProfs Daily Fix Bloghttp://www.mpdailyfix.com/index.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Renewable Energy News - RenewableEnergyWorld.comhttp://www.renewableenergyaccess.com/rss/renews.rss
    • interval: 3600, fetched 4 days ago, 53/53 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:03.813300+00:00']
  • The Rhizome Frontpage RSShttp://rhizome.org/syndicate/fp.rss
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':5:0: syntax error @@2013-07-16T23:32:05.749616+00:00']
  • the style fileshttp://style-files.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:08.300940+00:00']
  • e-Autosoundhttp://www.e-autosound.de/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:08.152217+00:00']
  • JNJ BTWhttp://jnjbtw.com/?feed=rss2
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • SynthGearhttp://www.synthgear.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Strobisthttp://strobist.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:10.408452+00:00']
  • Tablet PC Talk Newshttp://www.tabletpctalk.com/scripts/newspro/news.xml
    • interval: 3600, fetched 4 days ago, 0/5 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:32:10.842290+00:00']
  • TasteSpottinghttp://www.tastespotting.com/rss
    • interval: 3600, fetched 4 days ago, 0/311 articles
    • [u'application/octet-stream is not an XML media type @@2013-07-16T23:32:11.318241+00:00']
  • Squid Ninja RSS Kickerhttp://www.squidninja.com/rss-kicker.xml
    • interval: 3600, fetched 4 days ago, 0/1 articles
    • [u':18:9: not well-formed (invalid token) @@2013-07-16T23:32:11.109249+00:00']
  • Stephen W. Thomas BizTalk Bloghttp://geekswithblogs.net/sthomas/Rss.aspx
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:11.426290+00:00']
  • Snafu News: Grim Tales From Down Belowhttp://www.snafu-comics.com/feed.php?comic_id=12
    • interval: 3600, fetched 4 days ago, 11/11 articles
    • [u'document declared as us-ascii, but parsed as iso-8859-1 @@2013-07-16T23:32:12.369241+00:00']
  • tagesschau.de - Die Nachrichten der ARDhttp://www3.tagesschau.de/xml/tagesschau-meldungen/
    • interval: 3600, fetched 4 days ago, 0/170 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:12.481266+00:00']
  • Sister Clairehttp://www.sisterclaire.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:13.144181+00:00']
  • ShiftyLook Comicshttp://www.shiftylook.com/comics/rss/wondermomo
    • interval: 3600, fetched 4 days ago, 0/9 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:13.933265+00:00']
  • Shanghaiisthttp://www.shanghaiist.com/index.rdf
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • SearchNetworking: News on networking, mobility and voicehttp://rss.techtarget.com/42.xml
    • interval: 3600, fetched 4 days ago, 5/20 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:14.749239+00:00']
  • Seth's Bloghttp://sethgodin.typepad.com/seths_blog/index.rdf
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':16:67: mismatched tag @@2013-07-16T23:32:16.653237+00:00']
  • SearchWindowsServer: Expert advice on Windows-based systems and hardwarehttp://rss.techtarget.com/43.xml
    • interval: 3600, fetched 4 days ago, 20/20 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:16.253297+00:00']
  • Remote Desktop Services (Terminal Services) Team Bloghttp://blogs.msdn.com/ts/rss.xml
    • interval: 3600, fetched 4 days ago, 13/26 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:20.358286+00:00']
  • Refinery29http://www.refinery29.com/index.xml
    • interval: 3600, fetched 4 days ago, 387/387 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:21.681247+00:00']
  • Proceedings of the National Academy of Scienceshttp://www.pnas.org/rss/current.xml
    • interval: 3600, fetched 4 days ago, 0/178 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:23.130647+00:00']
  • Primewares - Latest programshttp://www.all4you.dk/FreewareWorld/rss.php
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • POPsickleSTRIPhttp://rss.popstrip.com/
    • interval: 3600, fetched 4 days ago, 6/6 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:22.376300+00:00']
  • Playbill.com : Combined Feedhttp://www.playbill.com/rss/articles.asp?FEATURE_TYPE=Combined_Feed
    • interval: 3600, fetched 4 days ago, 234/234 articles
    • [u'text/html; charset=ISO-8859-1 is not an XML media type @@2013-07-16T23:32:23.514049+00:00']
  • PharmaGossiphttp://pharmagossip.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:26.171883+00:00']
  • PEA Souphttp://peasoup.typepad.com/peasoup/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:27.732469+00:00']
  • Paul Krugmanhttp://krugman.blogs.nytimes.com/rss2.xml
    • interval: 3600, fetched 4 days ago, 31/31 articles
    • [u':26:2: mismatched tag @@2013-07-16T23:32:27.529155+00:00']
  • Parenting.com: Mom Tips and Expert Advicehttp://rss.parenting.com/web/parenting/rss/rssfeed/index.xml
    • interval: 3600, fetched 4 days ago, 3/3 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:32:28.680519+00:00']
  • Outside Innovationhttp://outsideinnovation.blogs.com/pseybold/atom.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Orange Crate Arthttp://mleddy.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:28.084049+00:00']
  • On the Runwayhttp://runway.blogs.nytimes.com/feed/
    • interval: 3600, fetched 4 days ago, 24/24 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:29.370046+00:00']
  • NoGodBlog.com - Limited to 8 last dayshttp://www.atheists.org/nogodblog/xmlsrv/atom.php?blog=2
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:31.717090+00:00']
  • News Tom's Hardwarehttp://www.tomshardware.co.uk/feeds/1664-rss2-tom-s-hardware-uk.xml
    • interval: 3600, fetched 4 days ago, 30/30 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:34.117226+00:00']
  • Neuroscience Gatewayhttp://www.brainatlas.org/aba/rss.rdf
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • []
  • Modern Art Noteshttp://www.artsjournal.com/man/rss.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html is not an XML media type @@2013-07-16T23:32:34.624826+00:00']
  • Microsoft Robotics Bloghttp://blogs.msdn.com/msroboticsstudio/rss.xml
    • interval: 3600, fetched 4 days ago, 0/25 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:36.410949+00:00']
  • Massive Pwnagehttp://www.massivepwnage.com/feed/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:36.063531+00:00']
  • Microsoft Research News and Highlightshttp://research.microsoft.com/rss/news.xml
    • interval: 3600, fetched 4 days ago, 25/25 articles
    • []
  • Mark Bittmanhttp://bitten.blogs.nytimes.com/feed/
    • interval: 3600, fetched 4 days ago, 10/10 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:36.708323+00:00']
  • Network World NetFlashhttp://www.networkworld.com/netflash.rss
    • interval: 3600, fetched 4 days ago, 0/72 articles
    • [u'text/plain; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:42.034084+00:00']
  • New & Updated Freewarehttp://www.fwnetwork.com/freeware/rss_main_home_new/all/
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:32:42.722757+00:00']
  • National Geographic Newshttp://news.nationalgeographic.com/index.rss
    • interval: 3600, fetched 4 days ago, 52/52 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:43.043167+00:00']
  • Network Monitorhttp://blogs.technet.com/netmon/rss.xml
    • interval: 3600, fetched 4 days ago, 1/25 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:32:46.361615+00:00']
  • MyRecipes: Dinner Tonight RSS Feedhttp://rss.cookinglight.com/web/cooking/rss/dinnertonight/index.xml
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:44.777381+00:00']
  • RichCommerce.frhttp://www.richcommerce.fr/feed/
    • interval: 3600, fetched 4 days ago, 10/10 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:53.657215+00:00']
  • French Wedding Photographer Paris Loire vallee Cote d'azur ...http://www.olivierlalinweddings.com/feed/
    • interval: 3600, fetched 4 days ago, 0/9 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:29:55.249156+00:00']
  • UXUIhttp://uxui.fr/feed/
    • interval: 3600, fetched 4 days ago, 0/58 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:29:55.573176+00:00']
  • Entreprise20.frhttp://www.entreprise20.fr/feed/
    • interval: 3600, fetched 4 days ago, 1/33 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:56.449482+00:00']
  • MediasSociaux.frhttp://www.mediassociaux.fr/feed/
    • interval: 3600, fetched 4 days ago, 11/11 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:56.469219+00:00']
  • Inside Searchhttp://insidesearch.blogspot.com/feeds/posts/default
    • interval: 3600, fetched 4 days ago, 14/149 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:29:56.857229+00:00']
  • 500pxhttp://feed.500px.com/500px-editors
    • interval: 3600, fetched 4 days ago, 0/1614 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:29:56.977255+00:00']
  • Fredzonehttp://www.fredzone.org/feed/
    • interval: 3600, fetched 4 days ago, 0/2352 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:29:57.692623+00:00']
  • Billets de blog mis en avant - mediachroniqueshttp://mediachroniques.ning.com/profiles/blog/feed?promoted=1&xn_auth=no
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'no Content-type specified @@2013-07-16T23:29:57.757172+00:00']
  • Notes d'un économistehttp://www.leconomiste-notes.fr/dotclear/rss.php
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'text/html; charset=iso-8859-1 is not an XML media type @@2013-07-16T23:29:57.977225+00:00']
  • Les Numériqueshttp://www.lesnumeriques.com/rss.xml
    • interval: 3600, fetched 4 days ago, 400/604 articles
    • [u':6:14: undefined entity @@2013-07-16T23:29:58.245208+00:00']
  • BBC News - Homehttp://feeds.bbci.co.uk/news/rss.xml
    • interval: 3600, fetched 4 days ago, 864/1316 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:58.477197+00:00']
  • Globenet - breveshttp://www.globenet.org/spip.php?page=rss-breves
    • interval: 3600, fetched 4 days ago, 3/22 articles
    • [u'text/html; charset=utf-8 is not an XML media type @@2013-07-16T23:29:58.933194+00:00']
  • businessMOBILE.fr: Solutions mobileshttp://www.businessmobile.fr/flux/rss/solutions-mobiles/
    • interval: 3600, fetched 4 days ago, 41/41 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:29:59.204119+00:00']
  • Agence Bibliosurf.comhttp://www.bibliobernt.net/spip.php?page=backend
    • interval: 3600, fetched 4 days ago, 0/0 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:29:59.464591+00:00']
  • ReadWritehttp://readwrite.com/main/feed/articles.xml
    • interval: 3600, fetched 4 days ago, 55/804 articles
    • [u'document declared as us-ascii, but parsed as utf-8 @@2013-07-16T23:30:01.858258+00:00']
  • GreenIT.frhttp://greenit.fr/frontpage/feed
    • interval: 3600, fetched 4 days ago, 102/2054 articles
    • [u':6:36: undefined entity @@2013-07-16T23:32:46.881246+00:00']
  • Manpower.fr - Offres Aquitainehttp://www.manpower.fr/emploi/rss/offresRss.action?idRegion=101
    • interval: 3600, fetched 4 days ago, 487/487 articles
    • [u':43:2: mismatched tag @@2013-07-16T23:32:48.061233+00:00']
  • comics.cevamarunt.rohttp://comics.cevamarunt.ro/feed/
    • interval: 3600, fetched 4 days ago, 18/589 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:51.194790+00:00']
  • Tom's Hardware - Actualité matériel informatique, multimédia, Internethttp://www.tomshardware.fr/feeds/rss2/tom-s-hardware-fr,1-1.xml
    • interval: 3600, fetched 4 days ago, 945/21191 articles
    • [u'text/html; charset=UTF-8 is not an XML media type @@2013-07-16T23:32:53.311525+00:00']
  • Korben (to be merged with 51c9f2cde7a05b27f6a23360, merge subscribers)http://feeds.feedburner.com/KorbensBlog-UpgradeYourMind
    • interval: 3600, fetched 4 days ago, 201/203 articles
    • [u':11:2: mismatched tag @@2013-07-16T23:32:54.458858+00:00']
  • 
    
    In [ ]: